翻訳と辞書
Words near each other
・ Express, Inc.
・ Express-class schooner
・ Express-K
・ Express.js
・ Express.Net Airlines
・ ExpressBus
・ ExpressCache
・ ExpressCard
・ EXpressDSP
・ Expressed emotion
・ Expressed sequence tag
・ Expressen
・ Expression
・ Expression (album)
・ Expression (architecture)
Expression (computer science)
・ Expression (mathematics)
・ Expression (sign language)
・ Expression (song)
・ Expression Atlas
・ Expression cassette
・ Expression cloning
・ Expression index
・ Expression pedal
・ Expression problem
・ Expression quantitative trait loci
・ Expression templates
・ Expression vector
・ Expression-oriented programming language
・ Expressionism


Dictionary Lists
翻訳と辞書 辞書検索 [ 開発暫定版 ]
スポンサード リンク

Expression (computer science) : ウィキペディア英語版
Expression (computer science)
An expression in a programming language is a combination of one or more explicit values, constants, variables, operators, and functions that the programming language interprets (according to its particular rules of precedence and of association) and computes to produce ("to return", in a stateful environment) another value. This process, as for mathematical expressions, is called evaluation. The returned value can be of various types, such as numerical, string, and logical.
For example, 2+3 is an arithmetic and programming expression which evaluates to 5. A variable is an expression because it denotes a value in memory, so y+6 is an expression. An example of a relational expression is 4≠4, which evaluates to false.〔(Javascript expressions, Mozilla ) Accessed July 6, 2009〕〔(Programming in C ) Accessed July 6, 2009〕
In C and most C-derived languages, a call to a function with a void return type is a valid expression, of type void.〔
(ISO/IEC 9899:1999 ) section 6.3.2.2, accessed August 31, 2009

Values of type void cannot be used, so the value of such an expression is always thrown away.
In many programming languages a function, and hence an expression containing a function, may have side effects. An expression with side effects does not normally have the property of referential transparency. In many languages (e.g. C++), expressions may be ended with a semicolon (;) to turn the expression into an expression statement. This asks the implementation to evaluate the expression for its side-effects only, and to disregard the result of the expression.
==See also==

* Statement (computer science) (contrast)
* Boolean expression
* Expression (mathematics)
* Evaluation strategy

抄文引用元・出典: フリー百科事典『 ウィキペディア(Wikipedia)
ウィキペディアで「Expression (computer science)」の詳細全文を読む



スポンサード リンク
翻訳と辞書 : 翻訳のためのインターネットリソース

Copyright(C) kotoba.ne.jp 1997-2016. All Rights Reserved.